home *** CD-ROM | disk | FTP | other *** search
- -*-text-*-
-
- Here is my port of ss 1.3.3 to the Atari st with MiNT. I have only
- included the binaries, my config.st file and the patches. To recompile
- it, extract the original distribution, extract the ST-file in the
- parent directory, cd into ss_133 and start patch like patch <PATCHES-ST.
- After that you can compile ss with make.
-
- The included binary is shareable. It was compiled with -O2,
- -fomit-frame-pointer, -mpcrel and -mbaserel. It is linked with the
- mntlib PL44, pml PL21 and the curses library PL16. PL16 has an
- error in cr_put.c:
-
- --- 1.1 1994/05/14 11:02:34
- +++ cr_put.c 1994/05/14 11:10:42
- @@ -363,7 +363,9 @@
- else {
- i = curscr->_y[outline][outcol];
- if ((i&_STANDOUT) == (curscr->_flags&_STANDOUT))
- - _putchar(i, stdout);
- + /* Error: i might be > 0x7f! */
- + /* _putchar(i, stdout); */
- + _putchar(i & 0x7f, stdout);
- else
- goto nondes;
- }
-
- Hope you like it
-
- Jens Krinke (krinke@ips.cs.tu-bs.de)
-
-